home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / mlregres / mlr32reg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-01-08  |  953 b   |  31 lines

  1. unit Mlr32reg;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   StdCtrls, Forms, ExtCtrls, Buttons, DB, DBTables, DsgnIntf, Dialogs,
  8.   Mlrtypes, MlrForms;
  9.  
  10.  
  11. procedure Register;
  12.  
  13. implementation
  14.  
  15. uses Mlrtable, Mlrquery;
  16.  
  17. procedure Register;
  18. begin
  19.  RegisterComponents('AAS Statistics', [TMLRTable]);
  20.  RegisterComponents('AAS Statistics', [TMLRQuery]);
  21.  RegisterPropertyEditor(TypeInfo(TAbout),TMLRQuery,'',TMLRQAboutProperty);
  22.  RegisterPropertyEditor(TypeInfo(TAbout),TMLRTable,'',TMLRTAboutProperty);
  23.  RegisterPropertyEditor(TypeInfo(TIndepVar),TMLRTable,'',TMLRTControlVarProperty);
  24.  RegisterPropertyEditor(TypeInfo(TIndepVar),TMLRQuery,'',TMLRQControlVarProperty);
  25.  RegisterPropertyEditor(TypeInfo(TDependentVar),TMLRTable,'',TMLRTResponseVarProperty);
  26.  RegisterPropertyEditor(TypeInfo(TDependentVar),TMLRQuery ,'',TMLRQResponseVarProperty);
  27.  RegisterMLRUserInfo('','')
  28. end;
  29.  
  30. end.
  31.